home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / imp_detect.nasl < prev    next >
Text File  |  2005-03-31  |  5KB  |  169 lines

  1. #
  2. # This script was written by George A. Theall, <theall@tifaware.com>.
  3. #
  4. # See the Nessus Scripts License for details.
  5. #
  6.  
  7.  
  8. # NB: I define the script description here so I can later modify
  9. #     it with the version number and install directory.
  10.   desc["english"] = "
  11. This script detects whether the remote host is running IMP and extracts
  12. version numbers and locations of any instances found. 
  13.  
  14. IMP is a PHP-based webmail package from The Horde Project that provides
  15. access to mail accounts via POP3 or IMAP. See
  16. http://www.horde.org/imp/ for more information. 
  17.  
  18. Risk factor : None";
  19.  
  20.  
  21. if (description) {
  22.   script_id(12643);
  23.   script_version("$Revision: 1.4 $");
  24.  
  25.   name["english"] = "IMP Detection";
  26.   script_name(english:name["english"]);
  27.  
  28.   script_description(english:desc["english"]);
  29.  
  30.   summary["english"] = "Checks for the presence of IMP";
  31.   script_summary(english:summary["english"]);
  32.  
  33.   script_category(ACT_GATHER_INFO);
  34.   script_copyright(english:"This script is Copyright (C) 2004 George A. Theall");
  35.  
  36.   family["english"] = "General";
  37.   script_family(english:family["english"]);
  38.  
  39.   script_dependencie("global_settings.nasl", "http_version.nasl", "no404.nasl");
  40.   script_require_ports("Services/www", 80);
  41.  
  42.   exit(0);
  43. }
  44.  
  45. include("global_settings.inc");
  46. include("http_func.inc");
  47. include("http_keepalive.inc");
  48.  
  49. host = get_host_name();
  50. port = get_http_port(default:80);
  51. if (debug_level) display("debug: looking for IMP on ", host, ":", port, ".\n");
  52.  
  53. if (!get_port_state(port)) exit(0);
  54. if (!can_host_php(port:port)) exit(0);
  55. if (get_kb_item("www/no404/" + port)) exit(0);
  56.  
  57. # Search for IMP in a couple of different locations.
  58. #
  59. # NB: Directories beyond cgi_dirs() come from a Google search - 
  60. #     'intitle:"welcome to" horde' - and represent the more popular
  61. #     installation paths currently. Still, cgi_dirs() should catch
  62. #     the directory if its referenced elsewhere on the target.
  63. dirs = make_list("", "/webmail", "/horde/imp", "/email", "/imp", "/mail", cgi_dirs());
  64. installs = 0;
  65. foreach dir (dirs) {
  66.   # Search for version number in a couple of different pages.
  67.   files = make_list(
  68.     "/services/help/?module=imp&show=about",
  69.     "/docs/CHANGES", "/test.php", "/README", "/lib/version.phps",
  70.     "/status.php3"
  71.   );
  72.   foreach file (files) {
  73.     if (debug_level) display("debug: checking ", dir, file, "...\n");
  74.  
  75.     # Get the page.
  76.     req = http_get(item:string(dir, file), port:port);
  77.     res = http_keepalive_send_recv(port:port, data:req);
  78.     if (res == NULL) exit(0);           # can't connect
  79.     if (debug_level) display("debug: res =>>", res, "<<\n");
  80.  
  81.     if (egrep(string:res, pattern:"^HTTP/.* 200 OK")) {
  82.       # Specify pattern used to identify version string.
  83.       # - version 4.x
  84.       if (file =~ "^/services/help") {
  85.         pat = ">This is Imp (.+)\.<";
  86.       }
  87.       # - version 3.x
  88.       else if (file == "/docs/CHANGES") {
  89.         pat = "^ *v(.+) *$";
  90.       }
  91.       #   nb: test.php available is itself a vulnerability but sometimes available.
  92.       else if (file == "/test.php") {
  93.         pat = "^ *<li>IMP: +(.+) *</li> *$";
  94.       }
  95.       #   nb: README is not guaranteed to be either available or accurate!!!
  96.       else if (file == "/README") {
  97.         pat = "^Version +(.+) *$";
  98.       }
  99.       #   nb: another security risk -- ability to view PHP source.
  100.       else if (file == "/lib/version.phps") {
  101.         pat = "IMP_VERSION', '(.+)'";
  102.       }
  103.       # - version 2.x
  104.       else if (file == "/status.php3") {
  105.         pat = ">IMP, Version (.+)<";
  106.       }
  107.       # - someone updated files but forgot to add a pattern???
  108.       else {
  109.         if (debug_level) display("Don't know how to handle file '", file, "'!\n");
  110.         exit(1);
  111.       }
  112.  
  113.       # Get the version string.
  114.       if (debug_level) display("debug: grepping results for =>>", pat, "<<\n");
  115.       matches = egrep(pattern:pat, string:res);
  116.       foreach match (split(matches)) {
  117.         match = chomp(match);
  118.         if (debug_level) display("debug: grepping >>", match, "<< for =>>", pat, "<<\n");
  119.         ver = eregmatch(pattern:pat, string:match);
  120.         if (ver == NULL) break;
  121.         ver = ver[1];
  122.         if (debug_level) display("debug: IMP version =>>", ver, "<<\n");
  123.  
  124.         # Success!
  125.         set_kb_item(
  126.           name:string("www/", port, "/imp"), 
  127.           value:string(ver, " under ", dir)
  128.         );
  129.         installations[dir] = ver;
  130.         ++installs;
  131.  
  132.         # nb: only worried about the first match.
  133.         break;
  134.       }
  135.       # nb: if we found an installation, stop iterating through files.
  136.       if (installs) break;
  137.     }
  138.   }
  139.   # Scan for multiple installations only if "Thorough Tests" is checked.
  140.   if (installs && !thorough_tests) break;
  141. }
  142.  
  143. # Report any instances found unless Report verbosity is "Quiet".
  144. if (installs && report_verbosity > 0) {
  145.   if (installs == 1) {
  146.     foreach dir (keys(installations)) {
  147.       # empty - just need to set 'dir'.
  148.     }
  149.     info = string("IMP ", ver, " was detected on the remote host under the path ", dir, ".");
  150.   }
  151.   else {
  152.     info = string(
  153.       "Multiple instances of IMP were detected on the remote host:\n",
  154.       "\n"
  155.     );
  156.     foreach dir (keys(installations)) {
  157.       info = info + string("    ", installations[dir], ", installed under ", dir, "\n");
  158.     }
  159.     info = chomp(info);
  160.   }
  161.  
  162.   desc = ereg_replace(
  163.     string:desc["english"],
  164.     pattern:"This script[^\.]+\.", 
  165.     replace:info
  166.   );
  167.   security_note(port:port, data:desc);
  168. }
  169.